home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Productivity Lifestyle Kn…ge Entertainment Utility
/
Productivity Lifestyle Knowledge (Starshine)(STARD1)(1999).BIN
/
Aveo
/
Attune
/
ThirdParty
/
IE50
/
ICW.CAB
/
Icwscrpt.exe
/
RCDATA
/
CABINET
/
CIS.SCP
next >
Wrap
Text File
|
1995-12-31
|
733b
|
41 lines
;
; This is a script file that demonstrates how
; to establish a PPP connection with Compuserve,
; which requires changing the port settings to
; log in.
;
; Main entry point to script
;
proc main
; Set the port settings so we can wait for
; non-gibberish text.
set port databits 7
set port parity even
transmit "^M"
waitfor "Host Name:"
transmit "CIS^M"
waitfor "User ID:"
transmit $USERID, raw
transmit "/go:pppconnect^M"
waitfor "Password: "
transmit $PASSWORD, raw
transmit "^M"
waitfor "One moment please..."
; Set the port settings back to allow successful
; negotiation.
set port databits 8
set port parity none
endproc